Disassembler - translation to spanish
DICLIB.COM
AI-based language tools
Enter a word or phrase in any language 👆
Language:     

Translation and analysis of words by artificial intelligence

On this page you can get a detailed analysis of a word or phrase, produced by the best artificial intelligence technology to date:

  • how the word is used
  • frequency of use
  • it is used more often in oral or written speech
  • word translation options
  • usage examples (several phrases with translation)
  • etymology

Disassembler - translation to spanish

COMPUTER PROGRAM THAT TRANSLATES MACHINE LANGUAGE INTO ASSEMBLY LANGUAGE
Disassembly; PE File Explorer; Commenting disassembler; List of disassemblers; Length disassembler; Length disassembler engine

Disassembler         
Desensamblar
disassembly         
(n.) = desensamblaje, desmontaje
Ex: Step-by-step procedures are described for the disassembly, reassembly, maintenance, and repair of submarine periscopes.
assembly1      
(n.) = montaje, ensamblaje
Ex: This is an application area of artificial intelligence that deals with the assembly of complex systems from a set of simple components.
----
* assembly language = lenguaje ensamblador
* assembly line = cadena de montaje
* assembly plant = planta de montaje
* car assembly line = línea de montaje de coches
* carriage assembly = ensamblaje de transporte
* disassembly [dis-assembly] = desensamblaje, desmontaje
* impression assembly = mecanismo de presión
* reassembly [re-assembly] = reensamblaje
* self-assembly = autoensamblaje

Definition

Packet Assembler/Disassembler
(PAD) Hardware or software device for splitting a data stream into discrete packets for transmission over some medium and then reforming the stream(s) at the receiver. The term is most often used for interfaces to X.25 lines. (1995-01-31)

Wikipedia

Disassembler

A disassembler is a computer program that translates machine language into assembly language—the inverse operation to that of an assembler. Disassembly, the output of a disassembler, is often formatted for human-readability rather than suitability for input to an assembler, making it principally a reverse-engineering tool. Common uses of disassemblers include recovering source code of a program whose original source was lost, malware analysis, modifying software (such as ROM hacking), and software cracking.

A disassembler differs from a decompiler, which targets a high-level language rather than an assembly language.

Assembly language source code generally permits the use of constants and programmer comments. These are usually removed from the assembled machine code by the assembler. If so, a disassembler operating on the machine code would produce disassembly lacking these constants and comments; the disassembled output becomes more difficult for a human to interpret than the original annotated source code. Some disassemblers provide a built-in code commenting feature where the generated output gets enriched with comments regarding called API functions or parameters of called functions. Some disassemblers make use of the symbolic debugging information present in object files such as ELF. For example, IDA allows the human user to make up mnemonic symbols for values or regions of code in an interactive session: human insight applied to the disassembly process often parallels human creativity in the code writing process.